home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2001 May / SGI Freeware 2001 May - Disc 3.iso / dist / fw_expect.idb / usr / freeware / bin / timed-read.z / timed-read
Text File  |  1999-01-26  |  204b  |  7 lines

  1. #!/usr/freeware/bin/expect -f
  2. # read a complete line from stdin
  3. # aborting after the number of seconds (given as an argument)
  4. # - Don Libes
  5. set timeout $argv
  6. expect -re \n {send_user $expect_out(buffer)}
  7.